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,
|
||||
const std::string & configFilePath)
|
||||
throw(ConcordiaException) :
|
||||
|
@ -37,6 +37,10 @@
|
||||
|
||||
class Concordia {
|
||||
public:
|
||||
/*! Parameterless constructor
|
||||
*/
|
||||
Concordia();
|
||||
|
||||
/*! Constructor.
|
||||
\param indexPath path to the index directory
|
||||
\param configFilePath path to the Concordia configuration file
|
||||
|
Loading…
Reference in New Issue
Block a user