added parameterless constructor for concordia

This commit is contained in:
rjawor 2015-10-19 15:38:10 +02:00
parent 1adabf4833
commit 873d7c300c
2 changed files with 7 additions and 0 deletions

View File

@ -15,6 +15,9 @@ std::string Concordia::_libraryVersion = _createLibraryVersion();
// =========================================== // ===========================================
Concordia::Concordia() {
}
Concordia::Concordia(const std::string & indexPath, Concordia::Concordia(const std::string & indexPath,
const std::string & configFilePath) const std::string & configFilePath)
throw(ConcordiaException) : throw(ConcordiaException) :

View File

@ -37,6 +37,10 @@
class Concordia { class Concordia {
public: public:
/*! Parameterless constructor
*/
Concordia();
/*! Constructor. /*! Constructor.
\param indexPath path to the index directory \param indexPath path to the index directory
\param configFilePath path to the Concordia configuration file \param configFilePath path to the Concordia configuration file