Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
L
libzmq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Packages
Packages
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
submodule
libzmq
Commits
1b2a4266
Commit
1b2a4266
authored
Sep 16, 2009
by
malosek
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
c and cpp directories moved into bindings directory
parent
6bfb9e6a
Hide whitespace changes
Inline
Side-by-side
Showing
22 changed files
with
21 additions
and
21 deletions
+21
-21
zmq.h
bindings/c/zmq.h
+0
-0
zmq.hpp
bindings/cpp/zmq.hpp
+0
-0
Makefile.am
bindings/java/Makefile.am
+1
-1
Makefile.am
devices/zmq_forwarder/Makefile.am
+1
-1
zmq_forwarder.cpp
devices/zmq_forwarder/zmq_forwarder.cpp
+1
-1
Makefile.am
perf/c/Makefile.am
+1
-1
Makefile.am
perf/cpp/Makefile.am
+1
-1
Makefile.am
perf/java/Makefile.am
+1
-1
Makefile.am
src/Makefile.am
+2
-2
app_thread.cpp
src/app_thread.cpp
+1
-1
dispatcher.cpp
src/dispatcher.cpp
+1
-1
i_inout.hpp
src/i_inout.hpp
+1
-1
io_thread.cpp
src/io_thread.cpp
+1
-1
msg_content.hpp
src/msg_content.hpp
+1
-1
pipe.cpp
src/pipe.cpp
+1
-1
pipe.hpp
src/pipe.hpp
+1
-1
pub.cpp
src/pub.cpp
+1
-1
socket_base.cpp
src/socket_base.cpp
+1
-1
sub.cpp
src/sub.cpp
+1
-1
zmq.cpp
src/zmq.cpp
+1
-1
zmq_decoder.hpp
src/zmq_decoder.hpp
+1
-1
zmq_encoder.hpp
src/zmq_encoder.hpp
+1
-1
No files found.
c/zmq.h
→
bindings/
c/zmq.h
View file @
1b2a4266
File moved
cpp/zmq.hpp
→
bindings/
cpp/zmq.hpp
View file @
1b2a4266
File moved
bindings/java/Makefile.am
View file @
1b2a4266
...
...
@@ -22,7 +22,7 @@ libjzmq_la_SOURCES = \
org_zmq_Socket.h
libjzmq_la_CXXFLAGS
=
-I
$(top_srcdir)
/src/libzmq
\
@JAVA_INCLUDE@
-I
$(top_srcdir)
/c
-Wall
@JAVA_INCLUDE@
-I
$(top_srcdir)
/
bindings/
c
-Wall
libjzmq_la_LDFLAGS
=
-version-info
@JLTVER@
libjzmq_la_LIBADD
=
$(top_builddir)
/src/libzmq.la
...
...
devices/zmq_forwarder/Makefile.am
View file @
1b2a4266
INCLUDES
=
-I
$(top_builddir)
/
c
-I
$(top_builddir)
/cpp
INCLUDES
=
-I
$(top_builddir)
/
bindings/c
bin_PROGRAMS
=
zmq_forwarder
...
...
devices/zmq_forwarder/zmq_forwarder.cpp
View file @
1b2a4266
...
...
@@ -17,7 +17,7 @@
along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#include "../../cpp/zmq.hpp"
#include "../../
bindings/
cpp/zmq.hpp"
#include "../../foreign/xmlParser/xmlParser.cpp"
int
main
(
int
argc
,
char
*
argv
[])
...
...
perf/c/Makefile.am
View file @
1b2a4266
INCLUDES
=
-I
$(top_builddir)
/c
INCLUDES
=
-I
$(top_builddir)
/
bindings/
c
noinst_PROGRAMS
=
local_lat remote_lat local_thr remote_thr
...
...
perf/cpp/Makefile.am
View file @
1b2a4266
INCLUDES
=
-I
$(top_srcdir)
/
cpp
-I
$(top_srcdir)
/c
INCLUDES
=
-I
$(top_srcdir)
/
bindings/cpp
-I
$(top_srcdir)
/bindings
/c
noinst_PROGRAMS
=
local_lat remote_lat local_thr remote_thr
...
...
perf/java/Makefile.am
View file @
1b2a4266
AM_JAVACFLAGS
=
-classpath
$(top_builddir)
/java
AM_JAVACFLAGS
=
-classpath
$(top_builddir)
/
bindings/
java
dist_noinst_JAVA
=
local_lat.java remote_lat.java local_thr.java
\
remote_thr.java
...
...
src/Makefile.am
View file @
1b2a4266
...
...
@@ -4,14 +4,14 @@ pkgconfigdir = $(libdir)/pkgconfig
pkgconfig_DATA
=
libzmq.pc
if
BUILD_CPP
include_HEADERS
=
../
cpp/zmq.hpp ..
/c/zmq.h
include_HEADERS
=
../
bindings/cpp/zmq.hpp ../bindings
/c/zmq.h
endif
if
BUILD_C
if
BUILD_CPP
else
include_HEADERS
=
../c/zmq.h
include_HEADERS
=
../
bindings/
c/zmq.h
endif
endif
...
...
src/app_thread.cpp
View file @
1b2a4266
...
...
@@ -19,7 +19,7 @@
#include <algorithm>
#include "../c/zmq.h"
#include "../
bindings/
c/zmq.h"
#include "platform.hpp"
...
...
src/dispatcher.cpp
View file @
1b2a4266
...
...
@@ -17,7 +17,7 @@
along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#include "../c/zmq.h"
#include "../
bindings/
c/zmq.h"
#include "dispatcher.hpp"
#include "app_thread.hpp"
...
...
src/i_inout.hpp
View file @
1b2a4266
...
...
@@ -20,7 +20,7 @@
#ifndef __ZMQ_I_INOUT_HPP_INCLUDED__
#define __ZMQ_I_INOUT_HPP_INCLUDED__
#include "../c/zmq.h"
#include "../
bindings/
c/zmq.h"
namespace
zmq
{
...
...
src/io_thread.cpp
View file @
1b2a4266
...
...
@@ -17,7 +17,7 @@
along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#include "../c/zmq.h"
#include "../
bindings/
c/zmq.h"
#include "io_thread.hpp"
#include "command.hpp"
...
...
src/msg_content.hpp
View file @
1b2a4266
...
...
@@ -22,7 +22,7 @@
#include <stddef.h>
#include "../c/zmq.h"
#include "../
bindings/
c/zmq.h"
#include "atomic_counter.hpp"
...
...
src/pipe.cpp
View file @
1b2a4266
...
...
@@ -17,7 +17,7 @@
along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#include "../c/zmq.h"
#include "../
bindings/
c/zmq.h"
#include "pipe.hpp"
...
...
src/pipe.hpp
View file @
1b2a4266
...
...
@@ -20,7 +20,7 @@
#ifndef __ZMQ_PIPE_HPP_INCLUDED__
#define __ZMQ_PIPE_HPP_INCLUDED__
#include "../c/zmq.h"
#include "../
bindings/
c/zmq.h"
#include "stdint.hpp"
#include "i_endpoint.hpp"
...
...
src/pub.cpp
View file @
1b2a4266
...
...
@@ -17,7 +17,7 @@
along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#include "../c/zmq.h"
#include "../
bindings/
c/zmq.h"
#include "pub.hpp"
#include "err.hpp"
...
...
src/socket_base.cpp
View file @
1b2a4266
...
...
@@ -20,7 +20,7 @@
#include <string>
#include <algorithm>
#include "../c/zmq.h"
#include "../
bindings/
c/zmq.h"
#include "socket_base.hpp"
#include "app_thread.hpp"
...
...
src/sub.cpp
View file @
1b2a4266
...
...
@@ -17,7 +17,7 @@
along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#include "../c/zmq.h"
#include "../
bindings/
c/zmq.h"
#include "sub.hpp"
#include "err.hpp"
...
...
src/zmq.cpp
View file @
1b2a4266
...
...
@@ -17,7 +17,7 @@
along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#include "../c/zmq.h"
#include "../
bindings/
c/zmq.h"
#include <errno.h>
#include <stdlib.h>
...
...
src/zmq_decoder.hpp
View file @
1b2a4266
...
...
@@ -20,7 +20,7 @@
#ifndef __ZMQ_ZMQ_DECODER_HPP_INCLUDED__
#define __ZMQ_ZMQ_DECODER_HPP_INCLUDED__
#include "../c/zmq.h"
#include "../
bindings/
c/zmq.h"
#include "decoder.hpp"
...
...
src/zmq_encoder.hpp
View file @
1b2a4266
...
...
@@ -20,7 +20,7 @@
#ifndef __ZMQ_ZMQ_ENCODER_HPP_INCLUDED__
#define __ZMQ_ZMQ_ENCODER_HPP_INCLUDED__
#include "../c/zmq.h"
#include "../
bindings/
c/zmq.h"
#include "encoder.hpp"
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment