SHOGUN  4.1.0
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
DummyFeatures.h
Go to the documentation of this file.
1 /*
2  * This program is free software; you can redistribute it and/or modify
3  * it under the terms of the GNU General Public License as published by
4  * the Free Software Foundation; either version 3 of the License, or
5  * (at your option) any later version.
6  *
7  * Written (W) 2009 Soeren Sonnenburg
8  * Copyright (C) 2009 Fraunhofer Institute FIRST and Max-Planck-Society
9  */
10 
11 #ifndef _DUMMYFEATURES__H__
12 #define _DUMMYFEATURES__H__
13 
14 #include <shogun/lib/config.h>
15 
16 #include <shogun/lib/common.h>
18 
19 namespace shogun
20 {
25 class CDummyFeatures : public CFeatures
26 {
27  public:
30 
35  CDummyFeatures(int32_t num);
36 
38  CDummyFeatures(const CDummyFeatures &orig);
39 
41  virtual ~CDummyFeatures();
42 
44  virtual int32_t get_num_vectors() const;
45 
47  virtual CFeatures* duplicate() const;
48 
50  inline EFeatureType get_feature_type() const;
51 
53  virtual EFeatureClass get_feature_class() const;
54 
56  virtual const char* get_name() const { return "DummyFeatures"; }
57 
58  private:
59  void init();
60 
61  protected:
63  int32_t num_vectors;
64 };
65 }
66 #endif
virtual const char * get_name() const
Definition: DummyFeatures.h:56
EFeatureClass
shogun feature class
Definition: FeatureTypes.h:38
virtual int32_t get_num_vectors() const
EFeatureType
shogun feature type
Definition: FeatureTypes.h:19
virtual CFeatures * duplicate() const
The class DummyFeatures implements features that only know the number of feature objects (but don't a...
Definition: DummyFeatures.h:25
all of classes and functions are contained in the shogun namespace
Definition: class_list.h:18
EFeatureType get_feature_type() const
The class Features is the base class of all feature objects.
Definition: Features.h:68
virtual EFeatureClass get_feature_class() const

SHOGUN Machine Learning Toolbox - Documentation