diff options
| author | Stephen D. Huston <shuston@apache.org> | 2008-10-16 22:32:31 +0000 |
|---|---|---|
| committer | Stephen D. Huston <shuston@apache.org> | 2008-10-16 22:32:31 +0000 |
| commit | bf54dc92bf7d46862cbef3113314b7b16797d92e (patch) | |
| tree | f4eb32ed0c3fd37e9b64eda78ebf3250d3814444 /cpp/src/qpid/broker/windows/BrokerDefaults.cpp | |
| parent | 18afe1de9b0f1082013569566192c460ec163290 (diff) | |
| download | qpid-python-bf54dc92bf7d46862cbef3113314b7b16797d92e.tar.gz | |
Make SaslAuthenticator reimplementable for schemes other than Cyrus, such as Windows; resolves QPID-1365
git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk/qpid@705382 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp/src/qpid/broker/windows/BrokerDefaults.cpp')
| -rw-r--r-- | cpp/src/qpid/broker/windows/BrokerDefaults.cpp | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/cpp/src/qpid/broker/windows/BrokerDefaults.cpp b/cpp/src/qpid/broker/windows/BrokerDefaults.cpp new file mode 100644 index 0000000000..138995980a --- /dev/null +++ b/cpp/src/qpid/broker/windows/BrokerDefaults.cpp @@ -0,0 +1,30 @@ +/* + * + * 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 "qpid/broker/Broker.h" + +namespace qpid { +namespace broker { + +const std::string Broker::Options::DEFAULT_DATA_DIR_LOCATION("\\TEMP"); +const std::string Broker::Options::DEFAULT_DATA_DIR_NAME("\\QPIDD.DATA"); + +}} |
