limal-nfs-server
KNfsServer.hpp
Go to the documentation of this file.
1 /*---------------------------------------------------------------------\
2 | |
3 | _ _ _ _ __ _ |
4 | | | | | | \_/ | / \ | | |
5 | | | | | | |_| | / /\ \ | | |
6 | | |__ | | | | | | / ____ \ | |__ |
7 | |____||_| |_| |_|/ / \ \|____| |
8 | |
9 | nfs-server library |
10 | |
11 | (C) SUSE Linux Products GmbH |
12 | (C) Novell, Inc. |
13 \----------------------------------------------------------------------/
14 
15  File: KNfsServer.hpp
16 
17  Author: Marius Tomaschewski, Chakravarthi P
18  Maintainer: Chakravarthi P
19 
20 /-*/
25 #ifndef LIMAL_NFS_SERVER_KNFS_SERVER_HPP
26 #define LIMAL_NFS_SERVER_KNFS_SERVER_HPP
27 
31 
32 #include <blocxx/String.hpp>
33 
34 
35 // -------------------------------------------------------------------
36 namespace LIMAL_NAMESPACE
37 {
38 namespace NFS_SERVER_NAMESPACE
39 {
40 
41 
42 // -------------------------------------------------------------------
46 class KNfsServer: public NfsServer
47 {
48 public:
53  KNfsServer();
54 
58  ~KNfsServer();
59 
60  /*
61  * Returns a name of the nfs server.
62  * @return name of the nfs server
63  blocxx::String getServerName() const;
64  */
65 
66 private:
67 };
68 
69 
70 // -------------------------------------------------------------------
71 } // End of NFS_SERVER_NAMESPACE
72 } // End of LIMAL_NAMESPACE
73 
74 #endif // LIMAL_NFS_SERVER_KNFS_SERVER_HPP
75 // vim: set ts=8 sts=8 sw=8 ai noet: