OLD | NEW |
1 /* | 1 /* |
2 * Copyright 2004 The WebRTC Project Authors. All rights reserved. | 2 * Copyright 2004 The WebRTC Project Authors. All rights reserved. |
3 * | 3 * |
4 * Use of this source code is governed by a BSD-style license | 4 * Use of this source code is governed by a BSD-style license |
5 * that can be found in the LICENSE file in the root of the source | 5 * that can be found in the LICENSE file in the root of the source |
6 * tree. An additional intellectual property rights grant can be found | 6 * tree. An additional intellectual property rights grant can be found |
7 * in the file PATENTS. All contributing project authors may | 7 * in the file PATENTS. All contributing project authors may |
8 * be found in the AUTHORS file in the root of the source tree. | 8 * be found in the AUTHORS file in the root of the source tree. |
9 */ | 9 */ |
10 | 10 |
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
49 | 49 |
50 char Pathname::DefaultFolderDelimiter() { | 50 char Pathname::DefaultFolderDelimiter() { |
51 return DEFAULT_FOLDER_DELIM; | 51 return DEFAULT_FOLDER_DELIM; |
52 } | 52 } |
53 | 53 |
54 Pathname::Pathname() | 54 Pathname::Pathname() |
55 : folder_delimiter_(DEFAULT_FOLDER_DELIM) { | 55 : folder_delimiter_(DEFAULT_FOLDER_DELIM) { |
56 } | 56 } |
57 | 57 |
58 Pathname::Pathname(const Pathname&) = default; | 58 Pathname::Pathname(const Pathname&) = default; |
| 59 Pathname::Pathname(Pathname&&) = default; |
59 | 60 |
60 Pathname::Pathname(const std::string& pathname) | 61 Pathname::Pathname(const std::string& pathname) |
61 : folder_delimiter_(DEFAULT_FOLDER_DELIM) { | 62 : folder_delimiter_(DEFAULT_FOLDER_DELIM) { |
62 SetPathname(pathname); | 63 SetPathname(pathname); |
63 } | 64 } |
64 | 65 |
65 Pathname::Pathname(const std::string& folder, const std::string& filename) | 66 Pathname::Pathname(const std::string& folder, const std::string& filename) |
66 : folder_delimiter_(DEFAULT_FOLDER_DELIM) { | 67 : folder_delimiter_(DEFAULT_FOLDER_DELIM) { |
67 SetPathname(folder, filename); | 68 SetPathname(folder, filename); |
68 } | 69 } |
69 | 70 |
| 71 Pathname& Pathname::operator=(const Pathname&) = default; |
| 72 Pathname& Pathname::operator=(Pathname&&) = default; |
| 73 |
70 void Pathname::SetFolderDelimiter(char delimiter) { | 74 void Pathname::SetFolderDelimiter(char delimiter) { |
71 ASSERT(IsFolderDelimiter(delimiter)); | 75 ASSERT(IsFolderDelimiter(delimiter)); |
72 folder_delimiter_ = delimiter; | 76 folder_delimiter_ = delimiter; |
73 } | 77 } |
74 | 78 |
75 void Pathname::Normalize() { | 79 void Pathname::Normalize() { |
76 for (size_t i=0; i<folder_.length(); ++i) { | 80 for (size_t i=0; i<folder_.length(); ++i) { |
77 if (IsFolderDelimiter(folder_[i])) { | 81 if (IsFolderDelimiter(folder_[i])) { |
78 folder_[i] = folder_delimiter_; | 82 folder_[i] = folder_delimiter_; |
79 } | 83 } |
(...skipping 165 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
245 // sanity checking | 249 // sanity checking |
246 return (isalpha(drive[0]) && | 250 return (isalpha(drive[0]) && |
247 drive[1] == ':' && | 251 drive[1] == ':' && |
248 drive[2] == '\\'); | 252 drive[2] == '\\'); |
249 } | 253 } |
250 #endif | 254 #endif |
251 | 255 |
252 /////////////////////////////////////////////////////////////////////////////// | 256 /////////////////////////////////////////////////////////////////////////////// |
253 | 257 |
254 } // namespace rtc | 258 } // namespace rtc |
OLD | NEW |