mydecisiontableimporter.cpp
来自「粗糙集应用软件」· C++ 代码 · 共 60 行
CPP
60 行
//-------------------------------------------------------------------
// 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 + =
减小字号Ctrl + -
显示快捷键?