3.0
Last change
on this file since 71:415b45c71663 was
71:415b45c71663,
checked in by Sämy Zehnder <saemy.zehnder@…>, 12 years ago
|
- Reorganized all the libraries. libinterfaces and libgateways are removed now and libdatatypes contains now all these files.
|
File size:
320 bytes
|
Line | |
---|
1 | #include "abstractgateway.h" |
---|
2 | |
---|
3 | IAccount* AbstractGateway::createAccountInstance() const { |
---|
4 | return createAccountInstance(defaultStorage()); |
---|
5 | } |
---|
6 | |
---|
7 | IStorage* AbstractGateway::defaultStorage() const { |
---|
8 | return defaultStorage_; |
---|
9 | } |
---|
10 | void AbstractGateway::setDefaultStorage(IStorage* storage) { |
---|
11 | defaultStorage_ = storage; |
---|
12 | } |
---|
Note: See
TracBrowser
for help on using the repository browser.