summaryrefslogtreecommitdiff
path: root/libodbcpp/odbc-dsn.h
diff options
context:
space:
mode:
Diffstat (limited to 'libodbcpp/odbc-dsn.h')
-rw-r--r--libodbcpp/odbc-dsn.h13
1 files changed, 6 insertions, 7 deletions
diff --git a/libodbcpp/odbc-dsn.h b/libodbcpp/odbc-dsn.h
index 4568cb6..0d33507 100644
--- a/libodbcpp/odbc-dsn.h
+++ b/libodbcpp/odbc-dsn.h
@@ -5,14 +5,13 @@
namespace ODBC {
class DSN {
- public:
- DSN(std::string, std::string, std::string);
- virtual ~DSN() = default;
- const std::string dsn; // DSN name for odbc.ini
- const std::string username; // User name
- const std::string password; // Password
+ public:
+ DSN(std::string, std::string, std::string);
+ virtual ~DSN() = default;
+ const std::string dsn; // DSN name for odbc.ini
+ const std::string username; // User name
+ const std::string password; // Password
};
}
#endif
-