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