src/lib/UnescapingProcessor.h
branchv_0
changeset 33 c9a158da6c32
parent 28 0e7c57d48d1e
equal deleted inserted replaced
32:e72546725c77 33:c9a158da6c32
    17 #pragma once
    17 #pragma once
    18 
    18 
    19 #include <sstream>
    19 #include <sstream>
    20 
    20 
    21 #include "INIReader.h"
    21 #include "INIReader.h"
    22 
       
    23 using namespace std;
       
    24 
    22 
    25 namespace relpipe {
    23 namespace relpipe {
    26 namespace in {
    24 namespace in {
    27 namespace ini {
    25 namespace ini {
    28 namespace lib {
    26 namespace lib {
    50 		Comment,
    48 		Comment,
    51 	};
    49 	};
    52 
    50 
    53 	virtual std::string unescape(const std::string& s, const TextType type) = 0;
    51 	virtual std::string unescape(const std::string& s, const TextType type) = 0;
    54 
    52 
       
    53 	virtual ~UnescapingProcessor() {
       
    54 	}
    55 };
    55 };
    56 
    56 
    57 }
    57 }
    58 }
    58 }
    59 }
    59 }