added parameterless constructor for concordia
This commit is contained in:
parent
1adabf4833
commit
873d7c300c
@ -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) :
|
||||||
|
@ -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
|
||||||
|
Loading…
Reference in New Issue
Block a user