sf

Committer:
floatlei
Date:
Tue Sep 27 09:41:32 2016 +0000
Revision:
0:afc4541d089d
sf

Who changed what in which revision?

UserRevisionLine numberNew contents of line
floatlei 0:afc4541d089d 1 /* mbed Microcontroller Library
floatlei 0:afc4541d089d 2 * Copyright (c) 2006-2013 ARM Limited
floatlei 0:afc4541d089d 3 *
floatlei 0:afc4541d089d 4 * Licensed under the Apache License, Version 2.0 (the "License");
floatlei 0:afc4541d089d 5 * you may not use this file except in compliance with the License.
floatlei 0:afc4541d089d 6 * You may obtain a copy of the License at
floatlei 0:afc4541d089d 7 *
floatlei 0:afc4541d089d 8 * http://www.apache.org/licenses/LICENSE-2.0
floatlei 0:afc4541d089d 9 *
floatlei 0:afc4541d089d 10 * Unless required by applicable law or agreed to in writing, software
floatlei 0:afc4541d089d 11 * distributed under the License is distributed on an "AS IS" BASIS,
floatlei 0:afc4541d089d 12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
floatlei 0:afc4541d089d 13 * See the License for the specific language governing permissions and
floatlei 0:afc4541d089d 14 * limitations under the License.
floatlei 0:afc4541d089d 15 */
floatlei 0:afc4541d089d 16
floatlei 0:afc4541d089d 17 #include "mbed.h"
floatlei 0:afc4541d089d 18
floatlei 0:afc4541d089d 19 #ifndef SANFAN_COUNTOR_H
floatlei 0:afc4541d089d 20 #define SANFAN_COUNTOR_H
floatlei 0:afc4541d089d 21
floatlei 0:afc4541d089d 22 #include "platform.h"
floatlei 0:afc4541d089d 23
floatlei 0:afc4541d089d 24 class Countor {
floatlei 0:afc4541d089d 25
floatlei 0:afc4541d089d 26 public:
floatlei 0:afc4541d089d 27 Countor();
floatlei 0:afc4541d089d 28
floatlei 0:afc4541d089d 29 unsigned char countor_mark;
floatlei 0:afc4541d089d 30 unsigned int countor_excute();
floatlei 0:afc4541d089d 31
floatlei 0:afc4541d089d 32
floatlei 0:afc4541d089d 33 /*
floatlei 0:afc4541d089d 34 private:
floatlei 0:afc4541d089d 35
floatlei 0:afc4541d089d 36
floatlei 0:afc4541d089d 37 */
floatlei 0:afc4541d089d 38 protected:
floatlei 0:afc4541d089d 39
floatlei 0:afc4541d089d 40 };
floatlei 0:afc4541d089d 41
floatlei 0:afc4541d089d 42 #endif
floatlei 0:afc4541d089d 43
floatlei 0:afc4541d089d 44
floatlei 0:afc4541d089d 45