big refactoring part 1
This commit is contained in:
parent
6a8f67ac34
commit
19229f6c26
28 changed files with 867 additions and 795 deletions
|
@ -14,13 +14,15 @@
|
|||
// You should have received a copy of the GNU General Public License
|
||||
// along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
#ifndef LMDBDATABASE_SERIALIZER_STDSTRING_HPP
|
||||
#define LMDBDATABASE_SERIALIZER_STDSTRING_HPP
|
||||
|
||||
#ifndef CORE_DATABASE_SERIALIZER_STDSTRING_HPP
|
||||
#define CORE_DATABASE_SERIALIZER_STDSTRING_HPP
|
||||
#include <string>
|
||||
|
||||
namespace LMDBDataBase {
|
||||
|
||||
template<>
|
||||
class DataBase::Serializer<std::string>
|
||||
{
|
||||
class Serializer<std::string> {
|
||||
public:
|
||||
Serializer():value() {};
|
||||
Serializer(const std::string& p_value):value(p_value) {};
|
||||
|
@ -46,8 +48,9 @@ private:
|
|||
std::string value;
|
||||
};
|
||||
|
||||
}
|
||||
|
||||
#endif //CORE_DATABASE_SERIALIZER_STDSTRING_HPP
|
||||
#endif //LMDBDATABASE_SERIALIZER_STDSTRING_HPP
|
||||
|
||||
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue