diff options
Diffstat (limited to '')
-rw-r--r-- | mtp/legacy/MtpEventPacket.h (renamed from mtp/MtpEventPacket.h) | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/mtp/MtpEventPacket.h b/mtp/legacy/MtpEventPacket.h index b42abceaf..64398560d 100644 --- a/mtp/MtpEventPacket.h +++ b/mtp/legacy/MtpEventPacket.h @@ -5,7 +5,7 @@ * 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 + * 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, @@ -25,22 +25,22 @@ class MtpEventPacket : public MtpPacket { public: - MtpEventPacket(); - virtual ~MtpEventPacket(); + MtpEventPacket(); + virtual ~MtpEventPacket(); #ifdef MTP_DEVICE - // write our data to the given file descriptor - int write(int fd); + // write our data to the given file descriptor + int write(int fd); #endif #ifdef MTP_HOST - // read our buffer with the given request - int read(struct usb_request *request); + // read our buffer with the given request + int read(struct usb_request *request); #endif - inline MtpEventCode getEventCode() const { return getContainerCode(); } - inline void setEventCode(MtpEventCode code) - { return setContainerCode(code); } + inline MtpEventCode getEventCode() const { return getContainerCode(); } + inline void setEventCode(MtpEventCode code) + { return setContainerCode(code); } }; #endif // _MTP_EVENT_PACKET_H |