eoserial: renamed String/Object/Array into Serial* to avoid compiler confusion.
This commit is contained in:
parent
43cb068d53
commit
10148ae00b
11 changed files with 18 additions and 18 deletions
|
|
@ -13,10 +13,10 @@ set(EOSERIAL_LIB_OUTPUT_PATH ${EO_BIN_DIR}/lib)
|
|||
set(LIBRARY_OUTPUT_PATH ${EOSERIAL_LIB_OUTPUT_PATH})
|
||||
|
||||
set(EOSERIAL_SOURCES
|
||||
Array.cpp
|
||||
Object.cpp
|
||||
SerialArray.cpp
|
||||
SerialObject.cpp
|
||||
Parser.cpp
|
||||
String.cpp
|
||||
SerialString.cpp
|
||||
)
|
||||
|
||||
add_library(eoserial STATIC ${EOSERIAL_SOURCES})
|
||||
|
|
|
|||
|
|
@ -23,9 +23,9 @@ Authors:
|
|||
|
||||
# include "Parser.h"
|
||||
|
||||
# include "Array.h"
|
||||
# include "Object.h"
|
||||
# include "String.h"
|
||||
# include "SerialArray.h"
|
||||
# include "SerialObject.h"
|
||||
# include "SerialString.h"
|
||||
|
||||
// in debug mode only
|
||||
// # define DEBUG(x) std::cout << x << std::endl;
|
||||
|
|
|
|||
|
|
@ -23,8 +23,8 @@ Authors:
|
|||
# define __EOSERIAL_PARSER_H__
|
||||
|
||||
# include "Entity.h"
|
||||
# include "String.h"
|
||||
# include "Object.h"
|
||||
# include "SerialString.h"
|
||||
# include "SerialObject.h"
|
||||
|
||||
/**
|
||||
* @file Parser.h
|
||||
|
|
|
|||
|
|
@ -19,7 +19,7 @@ Contact: http://eodev.sourceforge.net
|
|||
Authors:
|
||||
Benjamin Bouvier <benjamin.bouvier@gmail.com>
|
||||
*/
|
||||
# include "Array.h"
|
||||
# include "SerialArray.h"
|
||||
|
||||
namespace eoserial
|
||||
{
|
||||
|
|
@ -26,7 +26,7 @@ Authors:
|
|||
|
||||
# include "Entity.h"
|
||||
# include "Serializable.h"
|
||||
# include "Object.h"
|
||||
# include "SerialObject.h"
|
||||
|
||||
namespace eoserial
|
||||
{
|
||||
|
|
@ -19,7 +19,7 @@ Contact: http://eodev.sourceforge.net
|
|||
Authors:
|
||||
Benjamin Bouvier <benjamin.bouvier@gmail.com>
|
||||
*/
|
||||
# include "Object.h"
|
||||
# include "SerialObject.h"
|
||||
|
||||
using namespace eoserial;
|
||||
|
||||
|
|
@ -19,7 +19,7 @@ Contact: http://eodev.sourceforge.net
|
|||
Authors:
|
||||
Benjamin Bouvier <benjamin.bouvier@gmail.com>
|
||||
*/
|
||||
# include "String.h"
|
||||
# include "SerialString.h"
|
||||
|
||||
namespace eoserial
|
||||
{
|
||||
|
|
@ -22,9 +22,9 @@ Authors:
|
|||
# ifndef __EOSERIAL_UTILS_H__
|
||||
# define __EOSERIAL_UTILS_H__
|
||||
|
||||
# include "Array.h"
|
||||
# include "Object.h"
|
||||
# include "String.h"
|
||||
# include "SerialArray.h"
|
||||
# include "SerialObject.h"
|
||||
# include "SerialString.h"
|
||||
|
||||
namespace eoserial
|
||||
{
|
||||
|
|
|
|||
|
|
@ -22,10 +22,10 @@ Authors:
|
|||
# ifndef __EOSERIAL_HEADERS__
|
||||
# define __EOSERIAL_HEADERS__
|
||||
|
||||
# include "Object.h"
|
||||
# include "SerialObject.h"
|
||||
# include "Serializable.h"
|
||||
# include "Array.h"
|
||||
# include "Object.h"
|
||||
# include "SerialArray.h"
|
||||
# include "SerialObject.h"
|
||||
# include "String.h"
|
||||
# include "Parser.h"
|
||||
# include "Utils.h"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue