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:49:26 UTC

svn commit: r565780 - in /activemq/activemq-cpp/trunk/src/decaf/src/main/decaf/net: URLDecoder.cpp URLDecoder.h URLEncoder.cpp URLEncoder.h

Author: tabish
Date: Tue Aug 14 07:49:25 2007
New Revision: 565780

URL: http://svn.apache.org/viewvc?view=rev&rev=565780
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/net/URLDecoder.cpp
    activemq/activemq-cpp/trunk/src/decaf/src/main/decaf/net/URLDecoder.h
    activemq/activemq-cpp/trunk/src/decaf/src/main/decaf/net/URLEncoder.cpp
    activemq/activemq-cpp/trunk/src/decaf/src/main/decaf/net/URLEncoder.h

Added: activemq/activemq-cpp/trunk/src/decaf/src/main/decaf/net/URLDecoder.cpp
URL: http://svn.apache.org/viewvc/activemq/activemq-cpp/trunk/src/decaf/src/main/decaf/net/URLDecoder.cpp?view=auto&rev=565780
==============================================================================
--- activemq/activemq-cpp/trunk/src/decaf/src/main/decaf/net/URLDecoder.cpp (added)
+++ activemq/activemq-cpp/trunk/src/decaf/src/main/decaf/net/URLDecoder.cpp Tue Aug 14 07:49:25 2007
@@ -0,0 +1,25 @@
+/*
+ * 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 "URLDecoder.h"
+
+using namespace decaf;
+using namespace decaf::net;
+
+////////////////////////////////////////////////////////////////////////////////
+URLDecoder::URLDecoder() {
+}

Added: activemq/activemq-cpp/trunk/src/decaf/src/main/decaf/net/URLDecoder.h
URL: http://svn.apache.org/viewvc/activemq/activemq-cpp/trunk/src/decaf/src/main/decaf/net/URLDecoder.h?view=auto&rev=565780
==============================================================================
--- activemq/activemq-cpp/trunk/src/decaf/src/main/decaf/net/URLDecoder.h (added)
+++ activemq/activemq-cpp/trunk/src/decaf/src/main/decaf/net/URLDecoder.h Tue Aug 14 07:49:25 2007
@@ -0,0 +1,36 @@
+/*
+ * 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_NET_URLDECODER_H_
+#define _DECAF_NET_URLDECODER_H_
+
+#include <decaf/util/Config.h>
+
+namespace decaf{
+namespace net{
+
+    class DECAF_API URLDecoder {
+    public:
+
+        URLDecoder();
+        virtual ~URLDecoder() {}
+
+    };
+
+}}
+
+#endif /*_DECAF_NET_URLDECODER_H_*/

Added: activemq/activemq-cpp/trunk/src/decaf/src/main/decaf/net/URLEncoder.cpp
URL: http://svn.apache.org/viewvc/activemq/activemq-cpp/trunk/src/decaf/src/main/decaf/net/URLEncoder.cpp?view=auto&rev=565780
==============================================================================
--- activemq/activemq-cpp/trunk/src/decaf/src/main/decaf/net/URLEncoder.cpp (added)
+++ activemq/activemq-cpp/trunk/src/decaf/src/main/decaf/net/URLEncoder.cpp Tue Aug 14 07:49:25 2007
@@ -0,0 +1,25 @@
+/*
+ * 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 "URLEncoder.h"
+
+using namespace decaf;
+using namespace decaf::net;
+
+////////////////////////////////////////////////////////////////////////////////
+URLEncoder::URLEncoder() {
+}

Added: activemq/activemq-cpp/trunk/src/decaf/src/main/decaf/net/URLEncoder.h
URL: http://svn.apache.org/viewvc/activemq/activemq-cpp/trunk/src/decaf/src/main/decaf/net/URLEncoder.h?view=auto&rev=565780
==============================================================================
--- activemq/activemq-cpp/trunk/src/decaf/src/main/decaf/net/URLEncoder.h (added)
+++ activemq/activemq-cpp/trunk/src/decaf/src/main/decaf/net/URLEncoder.h Tue Aug 14 07:49:25 2007
@@ -0,0 +1,36 @@
+/*
+ * 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_NET_URLENCODER_H_
+#define _DECAF_NET_URLENCODER_H_
+
+#include <decaf/util/Config.h>
+
+namespace decaf{
+namespace net{
+
+    class DECAF_API URLEncoder {
+    public:
+
+        URLEncoder();
+        virtual ~URLEncoder() {}
+
+    };
+
+}}
+
+#endif /*_DECAF_NET_URLENCODER_H_*/