Last change
on this file since 123 was
123,
checked in by jkraaijeveld, 14 years ago
|
Added some extra classes
|
File size:
420 bytes
|
Line | |
---|
1 | <?php |
---|
2 | |
---|
3 | /* |
---|
4 | * To change this template, choose Tools | Templates |
---|
5 | * and open the template in the editor. |
---|
6 | */ |
---|
7 | |
---|
8 | /** |
---|
9 | * Description of Connector |
---|
10 | * |
---|
11 | * @author jkraaijeveld |
---|
12 | */ |
---|
13 | interface IConnector { |
---|
14 | //This class will outline everything a Connector needs to operate within the system |
---|
15 | public function get($arguments); |
---|
16 | public function set($rToolObject); |
---|
17 | public function load(); |
---|
18 | public function save(); |
---|
19 | } |
---|
20 | |
---|
21 | ?> |
---|
Note: See
TracBrowser
for help on using the repository browser.