Changeset - 796d8f3bf43c
[Not reviewed]
0 1 0
Jan Kaluza - 13 years ago 2012-09-10 14:04:40
hanzz.k@gmail.com
Update backends/twitter/userdb.h
1 file changed with 5 insertions and 0 deletions:
0 comments (0 inline, 0 general)
backends/twitter/userdb.h
Show inline comments
 
#if 0
 

	
 
#ifndef USERDB_H
 
#define USERDB_H
 

	
 
#include <iostream>
 
#include <sqlite3.h>
 
#include <vector>
 
#include <set>
 
#include "transport/logging.h"
 

	
 
struct UserData
 
{
 
	std::string user;
 
@@ -32,12 +34,15 @@ class UserDB {
 
		
 
	public:
 

	
 
		UserDB (std::string database);
 
		int exe(std::string s_exe);
 
		void insert(UserData info);
 
		void fetch(std::string user, std::vector<std::string> &row);
 
		std::set<std::string> getRegisteredUsers();
 
		~UserDB();
 
};
 

	
 
#endif
 

	
 

	
 
#endif
 
\ No newline at end of file
0 comments (0 inline, 0 general)