📄 mydecisiontableimporter.cpp
字号:
//-------------------------------------------------------------------
// Author........: Aleksander 豩rn
// Date..........:
// Description...:
// Revisions.....:
//===================================================================
#include <stdafx.h> // Precompiled headers.
#include <copyright.h>
#include <kernel/algorithms/mydecisiontableimporter.h>
#include <kernel/structures/decisiontable.h>
#include <kernel/structures/attribute.h>
#include <kernel/structures/integerattribute.h>
#include <kernel/structures/floatattribute.h>
#include <kernel/structures/stringattribute.h>
#include <kernel/structures/dictionary.h>
#include <kernel/utilities/iokit.h>
#include <kernel/utilities/creator.h>
#include <kernel/system/fstream.h>
#include <kernel/basic/vector.h>
#include <kernel/basic/message.h>
//-------------------------------------------------------------------
// Methods for class MyDecisionTableImporter.
//===================================================================
//-------------------------------------------------------------------
// Constructors/destructor.
//===================================================================
MyDecisionTableImporter::MyDecisionTableImporter() {
}
MyDecisionTableImporter::~MyDecisionTableImporter() {
}
//-------------------------------------------------------------------
// Methods inherited from Identifier.
//===================================================================
IMPLEMENTIDMETHODS(MyDecisionTableImporter, MYDECISIONTABLEIMPORTER, DecisionTableImporter)
//-------------------------------------------------------------------
// Methods inherited from Algorithm.
//===================================================================
//-------------------------------------------------------------------
// Method........: Apply
// Author........: Aleksander 豩rn
// Date..........:
// Description...: Given a decision table, empties it and fills it
// with data imported from a file on alien format.
//
// Comments......: Assumes that library clients use handles.
// Revisions.....: A
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -