mirror of
https://github.com/scylladb/scylladb.git
synced 2026-04-28 04:06:59 +00:00
28 lines
373 B
C++
28 lines
373 B
C++
#ifndef SERVICE_CLIENT_STATE_HH
|
|
#define SERVICE_CLIENT_STATE_HH
|
|
|
|
namespace service {
|
|
|
|
class client_state {
|
|
private:
|
|
sstring _keyspace;
|
|
|
|
public:
|
|
// FIXME: stub
|
|
|
|
void validate_login() const {
|
|
}
|
|
|
|
void set_keyspace(sstring keyspace) {
|
|
_keyspace = keyspace;
|
|
}
|
|
|
|
sstring get_keyspace() const {
|
|
return _keyspace;
|
|
}
|
|
};
|
|
|
|
}
|
|
|
|
#endif
|