~markwright/scalestack/zeromq

« back to all changes in this revision

Viewing changes to scalestack/zeromq/socket_service.cc

  • Committer: Mark Wright
  • Date: 2011-03-20 13:23:26 UTC
  • Revision ID: markwright@internode.on.net-20110320132326-uoh8y0yitqctlxka
Initial sketch, incomplete and untested

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * Scale Stack
 
3
 *
 
4
 * Copyright 2011 Mark Wright
 
5
 *
 
6
 * Licensed under the Apache License, Version 2.0 (the "License");
 
7
 * you may not use this file except in compliance with the License.
 
8
 * You may obtain a copy of the License at
 
9
 *
 
10
 *     http://www.apache.org/licenses/LICENSE-2.0
 
11
 *
 
12
 * Unless required by applicable law or agreed to in writing, software
 
13
 * distributed under the License is distributed on an "AS IS" BASIS,
 
14
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 
15
 * See the License for the specific language governing permissions and
 
16
 * limitations under the License.
 
17
 */
 
18
 
 
19
/**
 
20
 * @file
 
21
 * @brief ZeroMQ Socket Service Definitions
 
22
 */
 
23
 
 
24
#include <scalestack/zeromq/socket_t.h>
 
25
#include <scalestack/zeromq/socket_service.h>
 
26
 
 
27
namespace scalestack
 
28
{
 
29
namespace zeromq
 
30
{
 
31
 
 
32
socket_service::~socket_service()
 
33
{
 
34
}
 
35
 
 
36
} /* namespace zeromq */
 
37
} /* namespace scalestack */
 
38
 
 
39