src/ASN1Command.cpp
branchv_0
changeset 0 28294b895e5e
child 2 7128fabeede0
equal deleted inserted replaced
-1:000000000000 0:28294b895e5e
       
     1 /**
       
     2  * Relational pipes
       
     3  * Copyright © 2021 František Kučera (Frantovo.cz, GlobalCode.info)
       
     4  *
       
     5  * This program is free software: you can redistribute it and/or modify
       
     6  * it under the terms of the GNU General Public License as published by
       
     7  * the Free Software Foundation, version 3 of the License.
       
     8  *
       
     9  * This program is distributed in the hope that it will be useful,
       
    10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
       
    11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
       
    12  * GNU General Public License for more details.
       
    13  *
       
    14  * You should have received a copy of the GNU General Public License
       
    15  * along with this program. If not, see <http://www.gnu.org/licenses/>.
       
    16  */
       
    17 #include <cstdlib>
       
    18 #include <vector>
       
    19 #include <sstream>
       
    20 #include <memory>
       
    21 
       
    22 #include <relpipe/writer/RelationalWriter.h>
       
    23 #include <relpipe/writer/RelpipeWriterException.h>
       
    24 #include <relpipe/writer/AttributeMetadata.h>
       
    25 #include <relpipe/common/type/typedefs.h>
       
    26 
       
    27 #include <relpipe/cli/CLI.h>
       
    28 
       
    29 #include "ASN1Command.h"
       
    30 
       
    31 using namespace std;
       
    32 using namespace relpipe::writer;
       
    33 //using namespace relpipe::in::asn1::lib;
       
    34 
       
    35 namespace relpipe {
       
    36 namespace in {
       
    37 namespace asn1 {
       
    38 
       
    39 void ASN1Command::process(std::istream& input, std::shared_ptr<writer::RelationalWriter> writer, Configuration& configuration) {
       
    40 	// TODO: parse ASN.1 and write relational data
       
    41 
       
    42 }
       
    43 
       
    44 }
       
    45 }
       
    46 }