A header file name changed

master
Ryan Lee 2017-10-24 23:18:02 +09:00
parent 2bc12f9289
commit 258d746fa8
8 changed files with 8 additions and 8 deletions

2
API.md
View File

@ -27,7 +27,7 @@
Include following at the top of your code Include following at the top of your code
```c++ ```c++
#include "peerconnect.h" #include "peerapi.h"
``` ```
## Class: Peer ## Class: Peer

View File

@ -76,7 +76,7 @@ find_package(Asio)
# Headers and sources. # Headers and sources.
# ============================================================================ # ============================================================================
set(HEADERS set(HEADERS
"src/peerconnect.h" "src/peerapi.h"
"src/common.h" "src/common.h"
"src/control.h" "src/control.h"
"src/controlobserver.h" "src/controlobserver.h"
@ -87,7 +87,7 @@ set(HEADERS
) )
set(SOURCES set(SOURCES
"src/peerconnect.cc" "src/peerapi.cc"
"src/control.cc" "src/control.cc"
"src/peer.cc" "src/peer.cc"
"src/signalconnection.cc" "src/signalconnection.cc"

View File

@ -7,7 +7,7 @@
#include <iostream> #include <iostream>
#include <string> #include <string>
#include "peerconnect.h" #include "peerapi.h"
using namespace std; using namespace std;

View File

@ -7,7 +7,7 @@
#include <iostream> #include <iostream>
#include <string> #include <string>
#include "peerconnect.h" #include "peerapi.h"
using namespace std; using namespace std;

View File

@ -18,7 +18,7 @@
#endif #endif
#include <fcntl.h> #include <fcntl.h>
#include <signal.h> #include <signal.h>
#include "peerconnect.h" #include "peerapi.h"
#ifdef WIN32 #ifdef WIN32
#pragma warning(disable:4996) #pragma warning(disable:4996)

View File

@ -7,7 +7,7 @@
#include <string> #include <string>
#include <locale> #include <locale>
#include "peerconnect.h" #include "peerapi.h"
#include "control.h" #include "control.h"
#include "logging.h" #include "logging.h"

View File

@ -9,7 +9,7 @@
#include <thread> #include <thread>
#include <cassert> #include <cassert>
#include "peerconnect.h" #include "peerapi.h"
using namespace std; using namespace std;