You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@activemq.apache.org by ta...@apache.org on 2007/08/14 16:52:02 UTC

svn commit: r565783 - in /activemq/activemq-cpp/trunk/src/decaf/src/main/decaf/internal/net: ./ URIEncoderDecoder.cpp URIEncoderDecoder.h

Author: tabish
Date: Tue Aug 14 07:52:01 2007
New Revision: 565783

URL: http://svn.apache.org/viewvc?view=rev&rev=565783
Log:
http://issues.apache.org/activemq/browse/AMQCPP-103

Adding start of URI class and URL class plus associated classes.

Added:
    activemq/activemq-cpp/trunk/src/decaf/src/main/decaf/internal/net/
    activemq/activemq-cpp/trunk/src/decaf/src/main/decaf/internal/net/URIEncoderDecoder.cpp
    activemq/activemq-cpp/trunk/src/decaf/src/main/decaf/internal/net/URIEncoderDecoder.h

Added: activemq/activemq-cpp/trunk/src/decaf/src/main/decaf/internal/net/URIEncoderDecoder.cpp
URL: http://svn.apache.org/viewvc/activemq/activemq-cpp/trunk/src/decaf/src/main/decaf/internal/net/URIEncoderDecoder.cpp?view=auto&rev=565783
==============================================================================
--- activemq/activemq-cpp/trunk/src/decaf/src/main/decaf/internal/net/URIEncoderDecoder.cpp (added)
+++ activemq/activemq-cpp/trunk/src/decaf/src/main/decaf/internal/net/URIEncoderDecoder.cpp Tue Aug 14 07:52:01 2007
@@ -0,0 +1,26 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements.  See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You under the Apache License, Version 2.0
+ * (the "License"); you may not use this file except in compliance with
+ * the License.  You may obtain a copy of the License at
+ *
+ *     http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+#include "URIEncoderDecoder.h"
+
+using namespace decaf;
+using namespace decaf::internal;
+using namespace decaf::internal::net
+
+////////////////////////////////////////////////////////////////////////////////
+URIEncoderDecoder::URIEncoderDecoder() {
+}

Added: activemq/activemq-cpp/trunk/src/decaf/src/main/decaf/internal/net/URIEncoderDecoder.h
URL: http://svn.apache.org/viewvc/activemq/activemq-cpp/trunk/src/decaf/src/main/decaf/internal/net/URIEncoderDecoder.h?view=auto&rev=565783
==============================================================================
--- activemq/activemq-cpp/trunk/src/decaf/src/main/decaf/internal/net/URIEncoderDecoder.h (added)
+++ activemq/activemq-cpp/trunk/src/decaf/src/main/decaf/internal/net/URIEncoderDecoder.h Tue Aug 14 07:52:01 2007
@@ -0,0 +1,35 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements.  See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You under the Apache License, Version 2.0
+ * (the "License"); you may not use this file except in compliance with
+ * the License.  You may obtain a copy of the License at
+ *
+ *     http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+#ifndef _DECAF_INTERNAL_NET_URIENCODERDECODER_H_
+#define _DECAF_INTERNAL_NET_URIENCODERDECODER_H_
+
+namespace decaf{
+namespace internal{
+namespace net{
+
+    class URIEncoderDecoder {
+    public:
+
+        URIEncoderDecoder();
+        virtual ~URIEncoderDecoder() {}
+
+    };
+
+}}}
+
+#endif /*_DECAF_INTERNAL_NET_URIENCODERDECODER_H_*/