You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
936 B
C
30 lines
936 B
C
/**
|
|
* wWidgets - Lightweight UI Toolkit.
|
|
* Copyright (C) 2009-2011 Evgeny Andreeshchev <eugene.andreeshchev@gmail.com>
|
|
* Alexander Kotliar <alexander.kotliar@gmail.com>
|
|
*
|
|
* This code is distributed under the MIT License:
|
|
* http://www.opensource.org/licenses/MIT
|
|
*/
|
|
// Modifications copyright Amazon.com, Inc. or its affiliates
|
|
|
|
#ifndef CRYINCLUDE_EDITORCOMMON_QPROPERTYTREE_SERIALIZATION_H
|
|
#define CRYINCLUDE_EDITORCOMMON_QPROPERTYTREE_SERIALIZATION_H
|
|
#pragma once
|
|
|
|
|
|
#include "Serialization/STL.h"
|
|
#include "Serialization/Pointers.h"
|
|
#include "Serialization/ClassFactory.h"
|
|
#include "Serialization/StringList.h"
|
|
|
|
#include "Serialization/IArchive.h"
|
|
#include "Serialization/BinArchive.h"
|
|
|
|
using Serialization::IArchive;
|
|
using Serialization::SStruct;
|
|
using Serialization::TypeID;
|
|
using Serialization::SharedPtr;
|
|
|
|
#endif // CRYINCLUDE_EDITORCOMMON_QPROPERTYTREE_SERIALIZATION_H
|