File: DeviceProperty.cpp

package info (click to toggle)
android-file-transfer 4.5-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 2,496 kB
  • sloc: cpp: 12,909; python: 140; lex: 47; xml: 26; sh: 13; makefile: 6
file content (27 lines) | stat: -rw-r--r-- 685 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
#include <mtp/ptp/DeviceProperty.h>
#include <mtp/log.h>

namespace mtp
{
	std::string ToString(DeviceProperty property)
	{
		switch(property)
		{
#			define ENUM_VALUE(NAME, VALUE) ENUM_VALUE_TO_STRING(DeviceProperty, NAME, VALUE)
#			include <mtp/ptp/DeviceProperty.values.h>
			ENUM_VALUE_TO_STRING_DEFAULT(DeviceProperty, property, 4);
#			undef ENUM_VALUE
		}
	}

	std::string ToString(PerceivedDeviceType property)
	{
		switch(property)
		{
#			define ENUM_VALUE(NAME, VALUE) ENUM_VALUE_TO_STRING(PerceivedDeviceType, NAME, VALUE)
#			include <mtp/ptp/PerceivedDeviceType.values.h>
			ENUM_VALUE_TO_STRING_DEFAULT(PerceivedDeviceType, property, 8);
#			undef ENUM_VALUE
		}
	}
}