7 lines
115 B
C++
7 lines
115 B
C++
|
#include "dmmap.h"
|
||
|
|
||
|
dmmap::dmmap(string prefix, string suffix) {
|
||
|
key = prefix;
|
||
|
values.push_back(suffix);
|
||
|
}
|