Update class

This commit is contained in:
manzerbredes 2015-03-13 10:52:34 +04:00
parent 00ed5faf67
commit 40c659f681
4 changed files with 37 additions and 11 deletions

View file

@ -21,6 +21,7 @@ AESCrypt::AESCrypt(){
//Destructor //Destructor
AESCrypt::~AESCrypt(){ AESCrypt::~AESCrypt(){
} }

View file

@ -28,13 +28,6 @@
class AbstractSKA { class AbstractSKA {
public: public:
//Constructor
AbstractSKA();
//Destructor
~AbstractSKA();
/** /**
* @brief Encrypt data. * @brief Encrypt data.
* *

View file

@ -14,6 +14,15 @@ AbstractIDManager::AbstractIDManager(){
this->id=this->generateId(); this->id=this->generateId();
} }
AbstractIDManager::AbstractIDManager(std::string id){
this->id=id;
}
AbstractIDManager::~AbstractIDManager(){
this->id=id;
}
void AbstractIDManager::setId(std::string id){ void AbstractIDManager::setId(std::string id){
this->id = id; this->id = id;
} }

View file

@ -1,15 +1,21 @@
/** /**
* @file AbstractIDManager.cpp * @file AbstractIDManager.hpp
* @brief AbstractIDManager class definitions * @brief AbstractIDManager class definitions
* @author manzerbredes * @author manzerbredes
* @date 11 Mars 2015 * @date 11 Mars 2015
* *
* Contain all definitions of AbstractIDManager class. * Contain all definitions of AbstractIDManager class.
* If you want to manage id in class (like container), use
* this class as superclass.
* *
*/ */
//----- std -----
#include <string> #include <string>
#include <sstream> #include <sstream>
//----- boost -----
#include <boost/uuid/uuid.hpp> // uuid class #include <boost/uuid/uuid.hpp> // uuid class
#include <boost/uuid/uuid_generators.hpp> // generators #include <boost/uuid/uuid_generators.hpp> // generators
#include <boost/uuid/uuid_io.hpp> // streaming operators etc. #include <boost/uuid/uuid_io.hpp> // streaming operators etc.
@ -17,20 +23,37 @@
/**
* @class AbstractIDManager AbstractIDManager.hpp "/CryptClass/AbstractIDManager.hpp"
* @brief Managing ID
* @author manzerbredes
*
* This class should not be instantiate directly.
*
*/
class AbstractIDManager{ class AbstractIDManager{
public: public:
//Constructor
AbstractIDManager(); AbstractIDManager();
//Constructor, init with id
AbstractIDManager(std::string);
//Destructor
~AbstractIDManager();
//Getters and setters
std::string getId(); std::string getId();
void setId(std::string id); void setId(std::string id);
std::string generateId();
private: private:
//Generate and random id
std::string generateId();
std::string id; std::string id; ///< String id attribute
}; };