#ifndef __SymbolsToDatabase_h_ #define __SymbolsToDatabase_h_ #include #include #include #include #include #include "../../shared/GlobalConfigFile.h" #include "../../shared/MiscSupport.h" #include "../../shared/DatabaseWithRetry.h" #include "../../shared/DatabaseSupport.h" #include "DataFormats.h" class SymbolsToDatabase { private: DatabaseWithRetry _database; public: SymbolsToDatabase(std::string dbName) : _database(dbName, "overnight_symbols") { } void sendSymbols(int userId, int listId, const StringList &symbols, const std::string name); }; #endif