Advanced Settings Panel
[pierogi] / pirdeviceinfo.cpp
1 #include "pirdeviceinfo.h"
2
3 #include <string.h>
4
5 bool operator< (
6   const DeviceInfo &a,
7   const DeviceInfo &b)
8 {
9   if (a.make < b.make) return true;
10
11   if ((a.make == b.make) && (strcmp(a.model, b.model) < 0)) return true;
12
13   return false;
14 }