StructuredData.cpp

Go to the documentation of this file.
00001 /*
00002  * This program is free software; you can redistribute it and/or modify
00003  * it under the terms of the GNU General Public License as published by
00004  * the Free Software Foundation; either version 3 of the License, or
00005  * (at your option) any later version.
00006  *
00007  * Written (W) 2012 Fernando José Iglesias García
00008  * Copyright (C) 2012 Fernando José Iglesias García
00009  */
00010 
00011 #include <shogun/lib/StructuredData.h>
00012 
00013 using namespace shogun;
00014 
00015 CStructuredData::CStructuredData()
00016 : CSGObject()
00017 {
00018 }
00019 
00020 CStructuredData::~CStructuredData()
00021 {
00022 }
00023 
00024 EStructuredDataType CStructuredData::get_structured_data_type() const
00025 {
00026     SG_ERROR("get_structured_data_type() not defined. \n"
00027          "Make sure that STRUCTURED_DATA_TYPE(SDT) is defined "
00028          "in every class that inherits from CStructuredData.\n");
00029 
00030     return SDT_UNKNOWN;
00031 };
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Defines

SHOGUN Machine Learning Toolbox - Documentation