diff --git a/src_cloud/piccloudclient.cpp b/src_cloud/piccloudclient.cpp new file mode 100644 index 00000000..c6732d5a --- /dev/null +++ b/src_cloud/piccloudclient.cpp @@ -0,0 +1,25 @@ +/* + PIP - Platform Independent Primitives + PICloud Client + Copyright (C) 2020 Ivan Pelipenko peri4ko@yandex.ru + + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program. If not, see . +*/ + +#include "piccloudclient.h" + + +PICloudClient::PICloudClient() { +} + diff --git a/src_cloud/piccloudserver.cpp b/src_cloud/piccloudserver.cpp new file mode 100644 index 00000000..57d543ea --- /dev/null +++ b/src_cloud/piccloudserver.cpp @@ -0,0 +1,25 @@ +/* + PIP - Platform Independent Primitives + PICloud Server + Copyright (C) 2020 Ivan Pelipenko peri4ko@yandex.ru + + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program. If not, see . +*/ + +#include "piccloudserver.h" + + +PICloudServer::PICloudServer() { +} + diff --git a/src_main/cloud/piccloudclient.h b/src_main/cloud/piccloudclient.h new file mode 100644 index 00000000..09859e34 --- /dev/null +++ b/src_main/cloud/piccloudclient.h @@ -0,0 +1,38 @@ +/*! \file piccloudclient.h + * \brief PICloud Client +*/ +/* + PIP - Platform Independent Primitives + PICloud Client + Copyright (C) 2020 Ivan Pelipenko peri4ko@yandex.ru + + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program. If not, see . +*/ + +#ifndef PICCLOUDCLIENT_H +#define PICCLOUDCLIENT_H + +#include "pistring.h" + +class PIP_EXPORT PICloudClient { +public: + //! + PICloudClient(); + + +private: + +}; + +#endif // PICCLOUDCLIENT_H diff --git a/src_main/cloud/piccloudmodule.h b/src_main/cloud/piccloudmodule.h index 52279b00..bd1d6371 100644 --- a/src_main/cloud/piccloudmodule.h +++ b/src_main/cloud/piccloudmodule.h @@ -1,7 +1,7 @@ /* PIP - Platform Independent Primitives Module includes - Copyright (C) 2019 Andrey Bychkov work.a.b@yandex.ru + Copyright (C) 2020 Ivan Pelipenko peri4ko@yandex.ru This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -21,5 +21,7 @@ #define PICLOUDMODULE_H #include "piccloudtcp.h" +#include "piccloudclient.h" +#include "piccloudserver.h" #endif // PICLOUDMODULE_H diff --git a/src_main/cloud/piccloudserver.h b/src_main/cloud/piccloudserver.h new file mode 100644 index 00000000..ada83d56 --- /dev/null +++ b/src_main/cloud/piccloudserver.h @@ -0,0 +1,38 @@ +/*! \file piccloudserver.h + * \brief PICloud Server +*/ +/* + PIP - Platform Independent Primitives + PICloud Server + Copyright (C) 2020 Ivan Pelipenko peri4ko@yandex.ru + + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program. If not, see . +*/ + +#ifndef PICCLOUDSERVER_H +#define PICCLOUDSERVER_H + +#include "pistring.h" + +class PIP_EXPORT PICloudServer { +public: + //! + PICloudServer(); + + +private: + +}; + +#endif // PICCLOUDSERVER_H