Skip to content
Snippets Groups Projects
Commit f83992c9 authored by ilor's avatar ilor
Browse files

move Value and Value subclasses to values subdir

parent 943b139b
No related branches found
No related tags found
No related merge requests found
......@@ -11,12 +11,12 @@ link_directories(${Boost_LIBRARY_DIRS})
set(LIBS ${LIBS} ${Boost_LIBRARIES})
SET(libwccl_STAT_SRC
bool.cpp
exception.cpp
main.cpp
position.cpp
sentencecontext.cpp
value.cpp
values/bool.cpp
values/position.cpp
values/value.cpp
variables.cpp
)
......
#include <libwccl/bool.h>
#include <libwccl/values/bool.h>
namespace Wccl {
......
#ifndef LIBWCCL_BOOL_H
#define LIBWCCL_BOOL_H
#ifndef LIBWCCL_VALUES_BOOL_H
#define LIBWCCL_VALUES_BOOL_H
#include <libwccl/value.h>
#include <libwccl/values/value.h>
namespace Wccl {
......@@ -34,4 +34,4 @@ private:
} /* end ns Wccl */
#endif // LIBWCCL_BOOL_H
#endif // LIBWCCL_VALUES_BOOL_H
#include <libwccl/position.h>
#include <libwccl/values/position.h>
#include <boost/lexical_cast.hpp>
namespace Wccl {
......
#ifndef LIBWCCL_POSITION_H
#define LIBWCCL_POSITION_H
#ifndef LIBWCCL_VALUES_POSITION_H
#define LIBWCCL_VALUES_POSITION_H
#include <libwccl/value.h>
#include <libwccl/values/value.h>
#include <cstdlib>
namespace Wccl {
......
#include <libwccl/value.h>
#include <libwccl/values/value.h>
namespace Wccl {
......
#ifndef LIBWCCL_VALUE_H
#define LIBWCCL_VALUE_H
#ifndef LIBWCCL_VALUES_VALUE_H
#define LIBWCCL_VALUES_VALUE_H
#include <libcorpus2/tagset.h>
......
#ifndef LIBWCCL_VARIABLES_H
#define LIBWCCL_VARIABLES_H
#include <libwccl/bool.h>
#include <libwccl/values/bool.h>
#include <libwccl/exception.h>
#include <libwccl/position.h>
#include <libwccl/values/position.h>
#include <iostream>
#include <map>
#include <string>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment